home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / getgid.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  63 lines

  1. /* 
  2.  * getgid.c --
  3.  *
  4.  *    Procedure to map from Unix getgid system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: getgid.c,v 1.1 88/06/19 14:31:22 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "compatInt.h"
  16.  
  17.  
  18. /*
  19.  *----------------------------------------------------------------------
  20.  *
  21.  * getgid --
  22.  *
  23.  *    Procedure to map from Unix getgid system call to Sprite 
  24.  *    Proc_GetGroupIDs. 
  25.  *
  26.  * Results:
  27.  *    The sprite group id is returned for now.
  28.  *
  29.  * Side effects:
  30.  *    None.
  31.  *
  32.  *----------------------------------------------------------------------
  33.  */
  34.  
  35. int
  36. getgid()
  37. {
  38.     return(155);
  39. }
  40.  
  41. /*
  42.  *----------------------------------------------------------------------
  43.  *
  44.  * getegid --
  45.  *
  46.  *    Procedure to map from Unix getgid system call to Sprite 
  47.  *    Proc_GetGroupIDs. 
  48.  *
  49.  * Results:
  50.  *    The sprite group id is returned for now.
  51.  *
  52.  * Side effects:
  53.  *    None.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57.  
  58. int
  59. getegid()
  60. {
  61.     return(155);
  62. }
  63.